crypto/x509.ecPrivateKey.PrivateKey (field)

10 uses

	crypto/x509 (current package)
		sec1.go#L29: 	PrivateKey    []byte
		sec1.go#L64: 		PrivateKey:    key.D.FillBytes(privateKey),
		sec1.go#L75: 		PrivateKey: key.Bytes(),
		sec1.go#L109: 	k := new(big.Int).SetBytes(privKey.PrivateKey)
		sec1.go#L122: 	for len(privKey.PrivateKey) > len(privateKey) {
		sec1.go#L123: 		if privKey.PrivateKey[0] != 0 {
		sec1.go#L126: 		privKey.PrivateKey = privKey.PrivateKey[1:]
		sec1.go#L132: 	copy(privateKey[len(privateKey)-len(privKey.PrivateKey):], privKey.PrivateKey)